home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v9n19.arc / WSMOOTH < prev    next >
Text File  |  1990-10-13  |  841b  |  32 lines

  1. #debugging options
  2. #COPTIONS=-WX -W3 -c -DWINDOWS -DFILEBUF -AS -Gsw -Od -Zpiel 
  3. #LINKOPTS = /NOD /CO
  4.  
  5. #normal options
  6. COPTIONS=-WX -W3 -c -DWINDOWS -DFILEBUF -AS -Gsw -Ox -Zpe 
  7. LINKOPTS = /NOD
  8.  
  9. all: wsmooth.exe
  10.  
  11. wsmooth.res: wsmooth.rc wsmooth.h
  12.     rc -r wsmooth.rc
  13.     rc wsmooth.res
  14.  
  15. wsmooth.obj: wsmooth.c wsmooth wsmooth.h wsmooth2.h filebuf.h
  16.     cl $(COPTIONS) wsmooth.c
  17.  
  18. wsmooth2.obj: wsmooth2.c wsmooth wsmooth.h wsmooth2.h
  19.     cl $(COPTIONS) wsmooth2.c
  20.  
  21. file.obj: file.c wsmooth wsmooth.h wsmooth2.h
  22.     cl $(COPTIONS) file.c
  23.  
  24. filebuf.obj: filebuf.c filebuf.h wsmooth wsmooth.h wsmooth2.h
  25.     cl $(COPTIONS) filebuf.c
  26.  
  27. wsmooth.exe: wsmooth.obj wsmooth2.obj file.obj wsmooth.def wsmooth filebuf.obj
  28.     link $(LINKOPTS) wsmooth wsmooth2 file filebuf,,, libw slibcew, wsmooth.def
  29.     rc wsmooth.res
  30.  
  31.  
  32.